home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "MainModule"
- Option Explicit
-
- '------------------------------------------------------
- '<Purpose> singular program entry point
- '------------------------------------------------------
- Public Sub Main()
-
- Status.MyCaption = "FTP Explorer Status"
- Status.Show
- Explorer.Show
-
- End Sub
-
- '------------------------------------------------------
- '<Purpose> singular program exit point
- '------------------------------------------------------
- Public Sub ExitProc()
- CleanupForms
-
- 'don't end if you're a server
- If (App.StartMode = vbSModeStandalone) Then
- End
- End If
- End Sub
-
- '------------------------------------------------------
- '<Purpose> destroy all form objects, important in
- ' OLE servers
- '------------------------------------------------------
- Private Sub CleanupForms()
- Unload AboutBox
- Unload Disconnect
- Unload Explorer
- Unload MapServers
- Unload Server
- Unload Status
-
- Set AboutBox = Nothing
- Set Disconnect = Nothing
- Set Explorer = Nothing
- Set MapServers = Nothing
- Set Server = Nothing
- Set Status = Nothing
- End Sub
-
-
-